home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef __MBUTTON_H
- #define __MBUTTON_H
-
- #define MBUTTON_ID 0x0106
-
- class MButton : public MLabel {
- public:
- MButton (int x1, int y1, int x2, int y2, BYTE ALabel[], WORD AHandle, WORD AParent = HROOT);
- MButton (const RECT& ABox, BYTE ALabel[], WORD AHandle, WORD AParent = HROOT);
- virtual void Draw (void);
- virtual WORD Handler (EVENT event);
- virtual inline classType isA (void) {return (MBUTTON_ID);};
- ~MButton (void);
- };
-
- #endif
-